home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 816 b | 38 lines | [TEXT/MPS ] |
- // UQD3DApplication.h
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
-
-
- #ifndef __UQD3DApplication__
- #define __UQD3DApplication__
-
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TQD3DApplication
- //----------------------------------------------------------------------------------------
-
- class TQD3DApplication: public TApplication
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TQD3DApplication();
- // Constructor
-
- virtual ~TQD3DApplication();
- // Destructor
-
- virtual void IQD3DApplication();
-
- // Documents
- virtual TDocument* DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile);
- virtual void DoSetupMenus();
- virtual void DoMenuCommand(CommandNumber aCommandNumber);
-
- };
-
- #endif
-